home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / msqc25t1 / tooltest.c < prev    next >
C/C++ Source or Header  |  1990-09-06  |  585b  |  30 lines

  1. /* tooltest.c: A demonstration program, A Microsoft QuickC program
  2.  Enter into the program list: tooltest.c, toolbox1.c
  3.  
  4.  Variables: a       First integer value
  5.             b       Second integer value
  6.             sum     Sum of the two values
  7.             dif     Difference of the two values
  8.  
  9.  This Demonstrates functions in toolbox1 module
  10.  
  11. */
  12.  
  13. #include <stdio.h>
  14. #include "toolbox1.h"
  15.  
  16. main()
  17. {
  18.     int a, b, sum, dif;
  19.  
  20.     a = 3;
  21.     b = 4;
  22.  
  23.     sum = add( a, b );
  24.     dif = sub( a, b );
  25.  
  26.     printf("\n\na = %d, b = %d\n\n", a, b );
  27.     printf("add( a, b ) = %d, sub( a, b ) = %d\n", sum, dif );
  28. }
  29.  
  30.